home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 June: Reference Library / Dev.CD Jun 94.toast / Periodicals / develop / develop Issue 18 / develop 18 code / OSA Sample / Sources / SimpliFaceEvents.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-28  |  978 b   |  53 lines  |  [TEXT/MPS ]

  1. /*
  2.     SimpliFaceEvents.h
  3.     
  4.     AE Registry extensions for SimpliFace
  5.  
  6.     Developed by:    
  7.         
  8.         Paul G Smith (commstalk hq & Full Moon Software, Inc)
  9.         
  10.         you can leave messages at (UK): 0727 844232; (US): 408 253 7199
  11.         BUT I prefer to be contacted by e-mail
  12.         AppleLink:     SMITH.PG
  13.         Internet:     SMITH.PG@applelink.apple.com
  14.         
  15.         "SimpliFace" Sample code to accompany develop article
  16.         on techniques for embedding scripts in applications.
  17.  
  18. */
  19.  
  20.  
  21. /* custom apple event: "user event" */
  22.  
  23. #define kAESystemEvent    'SYSE'
  24.  
  25. #define keyAEEventKind    'PEVK'
  26.  
  27.  
  28. /* enumerations */
  29.  
  30. #define enumEventKind    'EEVK'
  31. #define    kAEMenuEvent    'EMEN'
  32. #define    kAEKeyEvent        'EKEY'
  33. #define    kAEMouseEvent    'EMOU'
  34.  
  35. #define enumButtonKind    'EBTK'
  36. #define    kAEBtnStandard    'EBST'
  37. #define    kAEBtnCheckbox    'EBCB'
  38. #define    kAEBtnRadio        'EBRA'
  39.  
  40.  
  41. /* object classes */
  42.  
  43. #define    cButton            'CBTN'
  44. #define    cTextField        'CFTX'
  45.  
  46.  
  47. /* object properties */
  48.  
  49. #define pSharedScript    'SCPT'
  50. #define pButtonKind        'PBTK'
  51. #define pEditable        'PEDI'
  52.  
  53.